<!DOCTYPE html>
<html lang="en">
  <head>
  	<?php $settings = AdminSettings::first(); ?>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="<?php echo $settings->description; ?>">
    <meta name="keywords" content="<?php echo $settings->keywords; ?>" />
    <link rel="shortcut icon" href="<?php echo URL::asset('public/img/favicon.ico'); ?>" />

    <title><?php echo Lang::get('auth.password_recover'); ?> - <?php echo $settings->title; ?></title>

    <?php echo $__env->make('includes.css_general', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    
    <link href="<?php echo URL::asset('public/css/jquery.fs.picker.min.css'); ?>" rel="stylesheet">

  </head>

  <body id="join-section">
     
     <?php echo $__env->make('includes.navbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    
<!-- Start CONTAINER -->
<div class="container wrap-ui">
	<!-- ROW -->
	<div class="row">
        
     	<!-- Col MD -->
<div class="col-md-12">	
	
	<div class="row">
		
		<div class="col-md-12">
			
			<h3 class="text-center join-title"><?php echo Lang::get('auth.password_recover'); ?></h3>
			<h4 class="text-center join-title">
				<a href="<?php echo Url::to('login'); ?>" class="btn btn-xs btn-success no-shadow font-default btn-join margin-zero">
					<i class="fa fa-long-arrow-left"></i> <?php echo Lang::get('auth.back'); ?>

					</a>
				</h4>
		
			
		<div class="login-form">
			
			<?php if(Session::has('error')): ?>
			<div class="alert alert-danger btn-sm" role="alert">
            		<?php echo Session::get('error'); ?>

            		</div>
        <?php elseif(Session::has('success')): ?>
        <div class="alert alert-success btn-sm" role="alert">
            		<?php echo Lang::get('auth.email_has_been_set'); ?>

            		</div>
        <?php endif; ?>
            	
          	<form action="<?php echo URL::to('recover/password'); ?>" method="post" name="form" id="signup_form">
           
            <div class="form-group">
              <input type="text" class="form-control login-field" value="" name="email" id="email" placeholder="<?php echo Lang::get('auth.email'); ?>" title="<?php echo Lang::get('auth.email'); ?>" autocomplete="off">
              <label class="login-field-icon fui-mail" for="username"></label>
             </div>
             
           <button type="submit" id="buttonSubmit" class="btn btn-block btn-lg btn-success"><?php echo Lang::get('auth.send'); ?></button>

          </form></div>
			
		</div><!-- /COL MD -->
		
		<div class="col-md-8">
								
		</div><!-- /COL MD -->
		
	</div><!-- /Row -->
    	
 </div><!-- /COL MD -->
    	
</div><!-- /Row -->

    </div> <!-- /container -->
    
    <?php echo $__env->make('includes.javascript_general', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    
    <script type="text/javascript">
    
    $('#buttonSubmit').click(function(){
    	$(this).css('display','none');
    });
    
    $('#email').focus();
    
    $("input[type=radio], input[type=checkbox]").picker();
        
    // Tooltip
    $('.shotTooltip').tooltip();
    
    </script>
    
  </body>
</html>